charat(0).touppercase() java

111

charat(0).touppercase() java -

string s="hello";
s = Character.toUpperCase(s.charAt(0)) + s.substring(1);
The output will be: Hello

Comments

Submit
0 Comments